home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1995 November
/
EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso
/
earcd
/
misc
/
a8085.lha
/
A8085 V1.0
/
SRC
/
CountBits.a
< prev
next >
Wrap
Text File
|
1995-07-31
|
535b
|
28 lines
; Count bits in a 4 byte bitfield (here 16)
inc Kernal.i
org $1000
bdata: dc.b %11010100,%11010001,%01001001
edata: dc.b %10111010
txt: dc.b "There are ",0," bits in the field!",10,0
start: lxi h,bdata
mvi b,edata-bdata+1
mvi c,0
loop1: mov a,m
mvi e,8
loop2: ral
jnc nobit
inr c
nobit: dcr e
jnz loop2
inx h
dcr b
jnz loop1
lxi h,txt
call print
mov a,c
call printacc
call print
hlt